home *** CD-ROM | disk | FTP | other *** search
- /*************************************************************
- * *
- * file: msf.h *
- * *
- *************************************************************/
-
- /*
- * Copyright (C) 1988, 1989 Sun Microsystems, Inc.
- */
-
- /* @(#)msf.h @(#)msf.h 1.2 89/11/14 Copyr 1989 Sun Microsystem. */
-
- /*
- * This file contains the typedefs of msf data structure
- */
-
- typedef struct msf {
- int min;
- int sec;
- int frame;
- } *Msf;
-
- extern Msf init_msf();
- extern Msf diff_msf();
-
-